SQL Server 2000 has three similar functions: scope_identity, ident_current, and @ identity. Both return values inserted into the identity column.Nbsp; ident_current returns the final id value generated for any session and a specific table in any
@ @IDENTITY (Transact-SQL) returns the last inserted identity value of the system function.Note After an INSERT, SELECT into, or bulk copy statement is complete, the @ @IDENTITY contains the last identity value generated by the statement. If the
[Original address:] The differences between scope_identity, ident_current, and @ identity (comparison)
@ Identity (TRANSACT-SQL) returns the system function of the last inserted Identifier value.
Note: After an insert, select into, or large-capacity
@ Identity (TRANSACT-SQL) returns the system function of the last inserted Identifier value.
Note: After an insert, select into, or large-capacity copy statement is completed, @ identity contains the last Identifier value generated by the statement.
Original: Use SQL statement to create a modified SQL Server identity column (that is, autogrow column)I. Definition and characteristics of the identity columnThe identity column in SQL Server is also called the identifier column, which is also known
I. Definition and characteristics of the identity columnThe identity column in SQL Server is also called the identifier column, which is also known as the self-increment column.This type of column has the following three characteristics:1. The data
After an INSERT, SELECT into, or bulk copy statement completes, the @ @IDENTITY contains the last identifying value of the statement generation. If the statement does not affect any table that contains an identity column, the @ @IDENTITY returns
Use SELECT @ @identity to get the ID that was automatically generated when the record was last insertedIf you use a stored procedure, it will be very simple, the code is as follows: SET @[email protected] @IDENTITYDescriptionAfter an INSERT, SELECT
definition of identity column and features the identity column in SQL Server is also called the identifier column, which is also called self-increment. This type of column has the following three characteristics:1, the data type of the column is a
Just now I saw a friend in the blog Park
Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->
//
Locate the id value just inserted
Datatable dt
=
Helper. getdatatable (
"
Select top 1
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.